##### Fix by EXL 11/11/11
Instruction:
This SDK is just for LINUX OS, if the OS of your computer is Windows, please install Linux OS or Windows virtual machine, the munual of installing Windows virtual machine will not be showed here.

1. Installing the SDK and Toolchain's for Linux OS:
1.1. Download the archive "mipsel-linux-uclibc.tar.bz2" from the website.
1.2. Unpack it with the command "tar-jxvf mipsel-linux-uclibc.tar.bz2" in any place you catalog.
1.3. Copy the files from the archive into the directory "/opt", running in console "sudo cp-r /your_folder/mipsel-linux-uclibc  /opt". Attention! To copy the directory "/opt" need admin rights and password.
1.4. Before compiling the programs and/or projects that need to add the environment variable: (export PATH="${PATH}:/opt/mipsel-linux-uclibc/usr/bin/"), This can be done with a script or just writing in the console this command.

2. Using the SDK and Toolchain's: 
2.1. If you use the Makefile, edit the variables in it "CC" and "CXX/CPP" as follows:
 "CC=mipsel-linux-gcc"
 "CXX=mipsel-linux-g++"
2.2. If you use the utility to configure, then the configuration, use the following command:
 "./configure --host=mipsel-linux --target=mipsel-linux"

3. Hello world
3.1. Create a new file named hello.c, and edit its contents as follows:
#include <stdio.h>
 
 int main(void)
 {
 	printf("Hello Dingoo\n");
 
 	return 0;
 }
then save.
3.2. To compile, use the following command:
"mipsel-linux-gcc -o hello.dge hello.c"
3.3. Copy the file "hello.dge" to device, and run it in file browser.
3.4. After the program is executed in device, you can't see any debug information, if users need to debug, please output the debug info to file on filesystem, the root path is /mnt/memory of Udisk root path.

4. Example
4.1. This device supports application Development based on SDL, and demo code show how to control the device:
4.2. Use of example:
4.3. mkdir test
4.4. Copy "testcode.tar.bz2" to test content
4.5. tar -jxf testcode.tar.bz2
4.6. make
4.7. Copy test.dge and data-files to device, and run it in file browser.